home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 2004-02-07 | 1.2 KB | 46 lines |
- "FILE"="Xteq Systems X-Setup Plugin 6.0"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH 1"="Startup/Shutdown\Startup\Windows NT/2K/XP\60) Windows Launch"
- "UIPATH 2"="Network\Server\Common"
- "UIPATH 3"="Program Options\Built in Windows Apps\Configure Your Server"
- "NAME"="Start Configure Server Wizard"
- "VERSION"="1.00"
- "OSVERSION"="0000011"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Start "Configure Your Server Wizard" on startup "
- "DESCRIPTION 1"="If you do not want the "Configure Your Server Wizard" to be automatically launched, use this setting."
- "AUTHOR"="Xteq Systems"
- "CONTACTURL"="http://www.xteq.com/"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="http://support.microsoft.com/default.aspx?scid=kb;EN-US;312580"
-
- sV1="HKCU\Software\Microsoft\Windows NT\CurrentVersion\srvWiz\@" 'DW = 0 = no run
-
-
- Sub Plugin_Initialize
- i=RegReadValue(sV1)
- if i<>"0" or IsEmpty(i) then
- SetUIElement 1,true
- end if
- End Sub
-
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- if GetUIElement(1)=true then
- Call RegWriteValue(sV1,"",1)
- else
- Call RegWriteValue(sV1,0,1)
- end if
-
-
- Call Logoff
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-